home *** CD-ROM | disk | FTP | other *** search
- stop();
- if(_root.gameQuality == "LOW")
- {
- this.gotoAndStop(3);
- }
- else if(_root.gameQuality == "MEDIUM")
- {
- this.gotoAndStop(2);
- }
- else if(_root.gameQuality == "HIGH")
- {
- this.gotoAndStop(1);
- }
- this.onPress = function()
- {
- if(this._currentframe == 1)
- {
- this.gotoAndStop(2);
- _root.gameQuality = "MEDIUM";
- _root._quality = "MEDIUM";
- }
- else if(this._currentframe == 2)
- {
- this.gotoAndStop(3);
- _root.gameQuality = "LOW";
- _root._quality = "LOW";
- }
- else if(this._currentframe == 3)
- {
- this.gotoAndStop(1);
- _root.gameQuality = "HIGH";
- _root._quality = "HIGH";
- }
- };
-